.header {
    background-color: #000;
    height: clamp(55px, 7vh, 200px);
    width: 100%;
    justify-content: space-between;
}

.inHeader {
    padding: 0px 25px;
}

.inHeader-1 button {
    background-color: #000000;
}

.inHeader-2 {
    gap: 5px;
}

#b-home {
    background-color: #1f1f1f;
    width: 50px;
    border-radius: 50%;
    transition: transform 50ms ease-in;
}

#b-home:hover {
    background-color: #323232;
    transform: scale(1.02, 1.02);
}

#b-home:active {
    transform: scale(0.90);
    background-color: #151515;
}

.homeImg {
    width: 25px;
}

.search-bar {
    border-radius: 25px;
    width: clamp(420px, 30vw, 1000px);
    height: 50px;
    background-color: #1f1f1f;
    justify-content: space-between;
}

.search-bar> :nth-child(1) {
    background-color: #1f1f1f;
    width: 50px;
    height: 50px;
    border-radius: 40px;
}

.search-bar> :nth-child(1)>img {
    filter: invert(0.6);
}

.search-bar> :nth-child(1)>img:hover {
    filter: invert(1);
}

.search-bar> :nth-child(3) {
    background-color: #1f1f1f;
    width: 50px;
    border-radius: 40px;
}

.search-bar> :nth-child(3)>img {
    filter: invert(0.6);
}

.search-bar> :nth-child(3)>img:hover {
    filter: invert(1);
}

/* .search-bar:active {
    outline-offset: 2px;
} */

.search-bar-elements {
    margin: 0px 0px;
}

#searchInput {
    cursor: blink;
    width: 75%;
    background-color: #1f1f1f;
}

#searchInput::placeholder {
    color: rgb(201, 201, 201);
    font-size: medium;
}

#searchInput:focus {
    outline: none;
}

.inHeader-3 {
    gap: 15px;
}

.tempo000 {
    font-weight: 800;
    color: gray;
    background: transparent;
    transition: transform 50ms ease-in;
}
.tempo000:hover {
    color: white;
    transform: scale(1.02);
}
.tempo000:active {
    transform: scale(0.90);
}

.inHeader-3> :nth-child(1) {
    border-radius: 20px;
}

.moo {
    width: 15px;
    border-radius: 40px;
    filter: invert(0.6);
}

.inHeader-3> :nth-child(4) {
    width: 1px;
    height: 30px;
    margin: 0px 10px;
}

.inHeader-3> :nth-child(5) {
    height: 50px;
    width: 100px;
    border-radius: 40px;
    gap: 5px;
}

.inHeader-3> :nth-child(6) {
    background-color: #000000;
    color: gray;
    font-weight: 800;
}

.inHeader-3> :nth-child(6):hover {
    color: white;
    transform: scale(1.02);
}

.inHeader-3> :nth-child(7) {
    color: black;
    font-weight: 800;
    width: 100px;
    height: 50px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1em;
    transition: transform 100ms ease-in;
}

.inHeader-3> :nth-child(7):hover {
    transform: scale(1.02);
}

.inHeader-3> :nth-child(7):active {
    transform: scale(0.90);
}

.header-3-elements button {
    background: transparent;
}

#right-three-line {
    position: absolute;
    top: 0;
    right: 30px;
    background: transparent;
    width: fit-content;
    height: clamp(55px, 7vh, 200px);
    z-index: 100;
}

#right-three-line img {
    width: 25px;
    height: 30px;
    filter: invert(1);
}

#right-three-line img:hover {
    filter: invert(0.7);
}

#right-three-line img:active {
    transform: scale(0.85);
}

#right-side-bar {
    position: absolute;
    top: 0;
    /* right: -100%; */
    z-index: 11;

    background: linear-gradient(to bottom, #171717 60%, #121212 100% 100%);    
    height: 90vh;
    width: fit-content;
    border-radius: 10px 0px 0px 10px;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    display: none;
}
@keyframes slideIn {
    from {
        display: none;
    }
    to {
        right: 0;
    }
}
@keyframes slideOut {
    from {
        right: 0;
    }
    to {
        display: none;
    }
}